package row

Import Path
	github.com/K-Phoen/grabana/row (on go.dev)

Dependency Relation
	imports 11 packages, and imported by 2 packages

Involved Source Files row.go
Package-Level Type Names (total 2)
/* sort by: | */
Option represents an option that can be used to configure a row. func Collapse() Option func HideTitle() Option func RepeatFor(variable string) Option func ShowTitle() Option func WithGauge(title string, options ...gauge.Option) Option func WithGraph(title string, options ...graph.Option) Option func WithHeatmap(title string, options ...heatmap.Option) Option func WithLogs(title string, options ...logs.Option) Option func WithSingleStat(title string, options ...singlestat.Option) Option func WithStat(title string, options ...stat.Option) Option func WithTable(title string, options ...table.Option) Option func WithText(title string, options ...text.Option) Option func WithTimeSeries(title string, options ...timeseries.Option) Option func New(board *sdk.Board, title string, options ...Option) (*Row, error) func github.com/K-Phoen/grabana/dashboard.Row(title string, options ...Option) dashboard.Option
Row represents a dashboard row. Alerts returns a list of alerts defined within this row. func New(board *sdk.Board, title string, options ...Option) (*Row, error)
Package-Level Functions (total 14)
Collapse makes the row collapsed by default.
HideTitle ensures that the title of the row will NOT be displayed.
New creates a new row.
RepeatFor will repeat the row for all values of the given variable.
ShowTitle ensures that the title of the row will be displayed.
WithGauge adds a "gauge" panel in the row.
WithGraph adds a "graph" panel in the row. Deprecated: use WithTimeSeries() instead.
WithHeatmap adds a "heatmap" panel in the row.
WithLogs adds a "logs" panel in the row.
WithSingleStat adds a "single stat" panel in the row. Deprecated: use WithStat() instead
WithStat adds a "stat" panel in the row.
WithTable adds a "table" panel in the row.
WithText adds a "text" panel in the row.
WithTimeSeries adds a "timeseries" panel in the row.